home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / TreeNode.java < prev    next >
Text File  |  1998-06-30  |  2KB  |  72 lines

  1. /*
  2.  * @(#)TreeNode.java    1.10 97/09/23
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.tree;
  22.  
  23. import java.util.Enumeration;
  24.  
  25. /**
  26.  * @version 1.10 09/23/97
  27.  * @author Rob Davis
  28.  * @author Scott Violet
  29.  */
  30.  
  31. public interface TreeNode
  32. {
  33.     /**
  34.      * Returns the child <code>TreeNode</code> at index 
  35.      * <code>childIndex</code>.
  36.      */
  37.     TreeNode getChildAt(int childIndex);
  38.  
  39.     /**
  40.      * Returns the number of children <code>TreeNode</code>s the receiver
  41.      * contains.
  42.      */
  43.     int getChildCount();
  44.  
  45.     /**
  46.      * Returns the parent <code>TreeNode</code> of the receiver.
  47.      */
  48.     TreeNode getParent();
  49.  
  50.     /**
  51.      * Returns the index of <code>node</code> in the receivers children.
  52.      * If the receiver does not contain <code>node</code>, -1 will be
  53.      * returned.
  54.      */
  55.     int getIndex(TreeNode node);
  56.  
  57.     /**
  58.      * Returns true if the receiver allows children.
  59.      */
  60.     boolean getAllowsChildren();
  61.  
  62.     /**
  63.      * Returns true if the receiver is a leaf.
  64.      */
  65.     boolean isLeaf();
  66.  
  67.     /**
  68.      * Returns the children of the reciever as an Enumeration.
  69.      */
  70.     Enumeration children();
  71. }
  72.